home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / sh-utils.12 / sh-utils / sh-utils-1.12 / lib / getline.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-05  |  321 b   |  18 lines

  1. #ifndef _getline_h_
  2. #define _getline_h_ 1
  3.  
  4. #include <stdio.h>
  5.  
  6. #ifndef __P
  7. #if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
  8. #define __P(args) args
  9. #else
  10. #define __P(args) ()
  11. #endif  /* GCC.  */
  12. #endif  /* Not __P.  */
  13.  
  14. int
  15.   getline __P ((char **_lineptr, size_t *_n, FILE *_stream));
  16.  
  17. #endif /* _getline_h_ */
  18.